home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 January / january_2001.iso / intercd / root / ^4Developers / VB / visbasdb / VBDB / VBDB Code / VB6 Code / Class 4 / Example4-2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-08-16  |  3.2 KB  |  106 lines

  1. VERSION 5.00
  2. Begin VB.Form frmDataEnvironment 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "Data Environment Example"
  5.    ClientHeight    =   1995
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   4530
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1995
  13.    ScaleWidth      =   4530
  14.    StartUpPosition =   3  'Windows Default
  15.    Begin VB.TextBox txtPubID 
  16.       DataField       =   "PubID"
  17.       DataMember      =   "comTitles"
  18.       DataSource      =   "denBooks"
  19.       Height          =   285
  20.       Left            =   840
  21.       TabIndex        =   7
  22.       Top             =   840
  23.       Width           =   660
  24.    End
  25.    Begin VB.TextBox txtISBN 
  26.       DataField       =   "ISBN"
  27.       DataMember      =   "comTitles"
  28.       DataSource      =   "denBooks"
  29.       Height          =   285
  30.       Left            =   840
  31.       TabIndex        =   5
  32.       Top             =   480
  33.       Width           =   3300
  34.    End
  35.    Begin VB.TextBox txtYearPublished 
  36.       DataField       =   "Year Published"
  37.       DataMember      =   "comTitles"
  38.       DataSource      =   "denBooks"
  39.       Height          =   285
  40.       Index           =   0
  41.       Left            =   3000
  42.       TabIndex        =   3
  43.       Top             =   840
  44.       Width           =   810
  45.    End
  46.    Begin VB.TextBox txtTitle 
  47.       DataField       =   "Title"
  48.       DataMember      =   "comTitles"
  49.       DataSource      =   "denBooks"
  50.       Height          =   285
  51.       Left            =   840
  52.       TabIndex        =   1
  53.       Top             =   120
  54.       Width           =   3375
  55.    End
  56.    Begin VB.Label lblFieldLabel 
  57.       Alignment       =   1  'Right Justify
  58.       AutoSize        =   -1  'True
  59.       Caption         =   "PubID:"
  60.       Height          =   255
  61.       Index           =   3
  62.       Left            =   -1080
  63.       TabIndex        =   6
  64.       Top             =   840
  65.       Width           =   1815
  66.    End
  67.    Begin VB.Label lblFieldLabel 
  68.       Alignment       =   1  'Right Justify
  69.       AutoSize        =   -1  'True
  70.       Caption         =   "ISBN:"
  71.       Height          =   255
  72.       Index           =   2
  73.       Left            =   -1080
  74.       TabIndex        =   4
  75.       Top             =   480
  76.       Width           =   1815
  77.    End
  78.    Begin VB.Label lblFieldLabel 
  79.       Alignment       =   1  'Right Justify
  80.       AutoSize        =   -1  'True
  81.       Caption         =   "Year Published:"
  82.       Height          =   255
  83.       Index           =   1
  84.       Left            =   1080
  85.       TabIndex        =   2
  86.       Top             =   840
  87.       Width           =   1815
  88.    End
  89.    Begin VB.Label lblFieldLabel 
  90.       Alignment       =   1  'Right Justify
  91.       AutoSize        =   -1  'True
  92.       Caption         =   "Title:"
  93.       Height          =   255
  94.       Index           =   0
  95.       Left            =   -1080
  96.       TabIndex        =   0
  97.       Top             =   180
  98.       Width           =   1815
  99.    End
  100. Attribute VB_Name = "frmDataEnvironment"
  101. Attribute VB_GlobalNameSpace = False
  102. Attribute VB_Creatable = False
  103. Attribute VB_PredeclaredId = True
  104. Attribute VB_Exposed = False
  105. Option Explicit
  106.